home *** CD-ROM | disk | FTP | other *** search
/ My Neighborhood / My Neighborhood.iso / mac / MacFiles / ExitAir.Dxr / 00029.ls < prev    next >
Encoding:
Text File  |  1997-11-21  |  654 b   |  19 lines

  1. on exitFrame
  2.   global S3Locs, S4Locs, S5Locs, frameCounter
  3.   set frameCounter to frameCounter + 1
  4.   if frameCounter = 9 then
  5.     set the castNum of sprite 5 to the castNum of sprite 5 + 900
  6.     set the castNum of sprite 6 to the castNum of sprite 6 + 900
  7.     set the castNum of sprite 7 to the castNum of sprite 7 + 900
  8.   end if
  9.   if the locV of sprite 5 <> -100 then
  10.     set the loc of sprite 5 to getAt(S3Locs, frameCounter)
  11.   end if
  12.   if the locV of sprite 6 <> -100 then
  13.     set the loc of sprite 6 to getAt(S4Locs, frameCounter)
  14.   end if
  15.   if the locV of sprite 7 <> -100 then
  16.     set the loc of sprite 7 to getAt(S5Locs, frameCounter)
  17.   end if
  18. end
  19.